Ĭ|<?php##	^^##?>
| 
| "^^";
ע|/*^^*/
echo|echo 
echo|echo "^^";
function|function ^^()##{####}
| ^^()##{####}
$_GET|$_GET['name']
$_POST|$_POST['name']
$_REQUES|$_REQUES['name']
SQL_|CREATE DATABASE  ``
SQL_ѯ|select * from ``
SQL_ѯָ|select * from `` where `` = ''
SQL_ѯ(ѯظ)|select * from `` group by ``
SQL_ѯ|select * from `` limit  
SQL_ѯ(ָλ)|select * from `` limit ʼλ,
SQL_ѯ|select * from `` order by 
SQL_ѯ()|select * from `` order by  desc
SQL_ѯ()|select * from `` order by  asc
SQL_ѯָ|//ѯǰ
SQL_ѯָ|select * from `` where `` like '%'
SQL_ѯָ|//ѯǰģֵ
SQL_ѯָ|select * from `` where `` like '_'
SQL_ѯָ|//ѯ
SQL_ѯָ|select * from `` where `` not like '%%'
SQL_ѯָ|//ѯ
SQL_ѯָ|select * from  where DATEDIFF(minute,ʱ,GETDATE())<2
SQL_ѯָ|//ѯ ``id ageС30꣬ظְҵjobȡǰ10
SQL_ѯָ|select * from `` where  group by job order by id desc limit 10
SQL_޸|update `` set `` = '' where `` = ''
SQL_ɾ_|delete from ``
SQL_ɾ_|drop database ``
SQL_ɾ_ָ|delete from `` where `` = ''
SQL_|truncate table ``
SQL_|insert into `` (``) values('')
SQL_|insert into `` set `1` = 'ֵ1',`2` = 'ֵ2'
SQL_|insert into `` values('')
SQL__|order by 
SQL__|asc
SQL__|desc
SQL_|SET NAMES 'GBK'
|<form action="ύҳ" method="ύʽ"></form>
_GETύ|<form action="ύҳ" method="get"></form>
_POSTύ|<form action="ύҳ" method="post"></form>
_ı|<input name="" type="text" value="ʼֵ" />
_ı|<input name="" type="password" value="ʼֵ" />
_ı|<textarea name="content" cols="" rows=""></textarea>
_ı|<input name="" type="text" value="ֵ" size="С" maxlength="" />
_ťύ|<input name="" type="submit" value="ֵ" />
_ʼֵ|value
PHP_ݿ|mysql_query("set names utf8")
PHP_ݿ|mysql_query("set names gbk")
PHP_ݿ|mysql_query("set names gbk2312")
PHP_ݿ(PHP5.2.3Ժ)|mysql_set_chartset('')
PHP_ҳutf|header("Content-type: text/html; charset=utf-8"); 
PHP_ҳgbk|header("Content-type: text/html; charset=gb2312"); 
PHP_ҳbig5|header("Content-type: text/html; charset=big5"); 
ű_Ϣ|<script>alert('½ɹ')</script>
ű_Ϣת|<script>alert('½ɹ');location.href='my.php'</script>
Ĭ_MYSQL|<?php####	//һݿ##	$conn = @mysql_connect('localhost','root','') or die("");	// @ شor die ʾ ##	##	//ڶѡҪݿ##	@mysql_select_db('php',$conn) or die('ڶ'.mysql_error()); 	// php ݿ, $conn ԴԲ÷##	mysql_query('sex name utf8');##	##	//,ȡ,(ȡ¼)##	$query = "select * from biao";##	$result = mysql_query($query) or die('SQL'.mysql_error());####	//Ĳ¼ʾ##	print_r(mysql_fetch_array($result,MYSQL_NUM));##	##	//һرݿ##	mysql_close();##?>